jQuery.noConflict();
jQuery(document).ready(function(){

	// HOME PAGE FULL SCREEN BACKGROUND
	//var FullscreenrOptions = {  width: 1280, height: 768, bgID: '#bgimg' };
	//jQuery.fn.fullscreenr(FullscreenrOptions);

        // WORK THUMBNAIL ROLLOVER
	jQuery(".viewmore").hide();
	jQuery(".thumbnail img").hover(function() {
		jQuery(".viewmore").show();
		jQuery(this).stop().animate({"opacity": "0"}, "fast");
	},function() {
		jQuery(".viewmore").hide();
		jQuery(this).stop().animate({"opacity": "1"}, "fast");
	});

	// WORK FILTERING
	jQuery("#filter-block").hide();
	jQuery("#filterbutton a").click(function () {
		jQuery("#filter-block").slideToggle("normal");
		return false;
	});

	// WORK DETAIL TOGGLE
	jQuery("#work-copy").hide();
	jQuery("#press-award").hide();
	jQuery("#tagdata").hide();
	jQuery('a#read-toggle').toggle(
		function () { 
			jQuery("#work-summary").hide();
			jQuery("#work-copy").show();
			jQuery("#press-award").show();
			jQuery("#tagdata").show();
			jQuery(this).text("Read Less");
			return false;
		},
		function () { 
			jQuery("#work-summary").show();
			jQuery("#work-copy").hide();
			jQuery("#press-award").hide();
			jQuery("#tagdata").hide();
			jQuery(this).text("Read More");
			return false;
		}
	);

        // PRODUCTS THUMBNAIL GALLERY
       /* function changeImg(imageName,title)
        {
                 jQuery("#product-detail-image").innerHTML = ;

                 return;
         }*/

});