﻿jQuery.noConflict();

(function($){
	$(document).ready(function(event) {
		$('div.search input').bind('focus', function(event) {
			$(this).attr('oldValue', $(this).val());
			$(this).val('');
		});
		$('div.search input').bind('blur', function(event) {
			$(this).val($(this).attr('oldValue').length > 0 && $(this).val().length == 0
			? $(this).attr('oldValue')
			: $(this).val());
		});
		//-----
		if (typeof (menu_aktif) == 'undefined') menu_aktif = 'main_menu';
		$('#menu div').css('position', 'absolute').css('left', '-129px').filter('#' + menu_aktif).css('left', '0');

		$('#menu a').click(function(event) {
			var c = $(this).attr('class');
			if (c.length > 0) {
				if (c == 'go_back') c = 'main_menu';
				$(this).closest('div').animate({ 'left': '-129px' });
				$('#' + c).animate({ 'left': '0px' });
				event.preventDefault();
			} //if
		}); //click

        $('a#fb').bind('mouseenter',function() {
            $('a#fb_').fadeIn();
        });
        $('a#fb').bind('mouseleave', function() {
            $('a#fb_').hide();
        });
        $('a#tw').bind('mouseenter', function() {
            $('a#tw_').fadeIn();
        });
        $('a#tw').bind('mouseleave', function() {
            $('a#tw_').hide();
        });
	});//ready
})(jQuery);

