$(document).ready(function() {	$('#topmenu li').hover(        function() {				$(this).find('ul').show();        },        function() {            $(this).find('ul').hide();        }	);		$('.swbuttons a').click(        function() {				$('.swbuttons a').removeClass("active");				$(this).addClass("active");				var l = $(this).attr("rel");				$('.swt').hide();				$('#'+l).show();        }	);		/*$("a[rel='imagegroup']").colorbox();	$("a[rel='lightbox']").colorbox();*/	if (window.PIE) {        $(".topmenu a").each(function() {            PIE.attach(this);        });                $(".swbuttons a").each(function() {            PIE.attach(this);        });                $(".swcontainer").each(function() {            PIE.attach(this);        });                $(".tbuttons").each(function() {            PIE.attach(this);        });                $(".inpt").each(function() {            PIE.attach(this);        });                $(".bigsubmit").each(function() {            PIE.attach(this);        });            }    		/*portfolio*/			$('.portChecker input').change(function() {	   		var el = $(this).attr('id');    			if($(this).is(':checked')){    				$('.portContainer').find("div."+el).fadeIn("2000");    			}else{    				$('.portContainer').find("div."+el).fadeOut("2000");    			}			});			/*portfolio*/						$(' [placeholder] ').defaultValue();	/*end document.ready*/    });
