/*===========Mamun===============*/

jQuery(document).ready(function($){
	$('.menu1 li').hover(
		function(){
			$(this).children('ul').stop(true,true).slideDown("fast");
		},
		function(){
			$(this).children('ul').slideUp("fast");
		}
	);
	
	$('div.socialCont a').hover(
		function(){
			$('img',this).stop(true,true).fadeTo('slow',0.4);
		},
		function(){
			$('img',this).fadeTo('slow',1.0);
		}
	);
	
	$(function() {
		if( $('ul#user_interaction').length > 0 ){

		$('ul#user_interaction').carouFredSel({
			direction: 'right',
			prev: '#next1',
			next: '#prev1',
			width: 940,
			//padding: 'auto',
			items: {
				start: 0,
				visible: 1
			},
			auto:{
				pauseDuration: 2000 //=== '5 Sec'
			},
			scroll: {
				easing: 'swing',
				mousewheel: false,
				pauseOnHover: true
			}
		});
		}
	});
	
	/*$('.menu1 >li, .menu1 li li').hover(function(){
	$(this).children('ul').stop(true,true).slideDown("fast");
	$(this).addClass('slcted')
	},
	function(){
	$(this).children('ul').slideUp("fast");
	$(this).removeClass('slcted')
	});*/
	
	
 });
	

