// HTML5 elements for IE
// For discussion and comments, see: http://remysharp.com/2009/01/07/html5-enabling-script/
(function(){if(!/*@cc_on!@*/0)return;var e = "abbr,article,aside,audio,bb,canvas,datagrid,datalist,details,dialog,eventsource,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,time,video".split(',');for(var i=0;i<e.length;i++){document.createElement(e[i])}})()

$(function(){
	$('#mycarousel').jcarousel({
		wrap: 'circular',
		scroll: 1
	});
	$(".png, .jcarousel-prev, .jcarousel-next").ifixpng();
	$(".sec_nav").each(function(){
		var th=this;
		$(this.parentNode).hover(function(){
			$(this).addClass("hover");
			$(th).removeClass("dsp_n");
		},
		function(){
			$(this).removeClass("hover");
			$(th).addClass("dsp_n");
		});
	});
});

