(function($) {

	//=====================================Main Routine
	$(function() {
		setRollovers();
		initSearchExample();
		initScrollLinkPagetop();
		initScrollLinkInternalAnchor();
	});

	//====================================Functions for Calling Plugins

        // Text in Search Form 
	var initSearchExample = function() {
		$('#field_search_keyword').example(function() {
			return $(this).attr('title');
		});
	};

	// Scroll to Pagetop
	var initScrollLinkPagetop = function() {
		$("div.section_lnk_pgtop, li.lnk_pgtop_section").localScroll({speed: 950, easing: "easeOutExpo"});
	};

	// Scroll to Internal Anchor
	var initScrollLinkInternalAnchor = function() {
		$("#main_contents").find(".section_lnk_anc, .page-nav-01").localScroll({speed: 950, easing: "easeOutExpo"});
	};

})(jQuery)

