$().ready(function() {
	$('#writeComment').click(function() {
		$('#comments').slideDown('slow');
	});
	$('#hideComment').click(function() {
		$('#comments').slideUp('slow');
	});
});
$(document).pngFix();
$(document).ready(function(){
	$("#myController").jFlow({
		slides: "#mySlides",
		width: "965px",
		height: "235px"
	});
	$('#news').tabs({ fxFade: true, fxSpeed: 'slow' });
	$('#portfolioTabs').tabs({ fxFade: true, fxSpeed: 'slow' });
	$('#clients').innerfade({ speed: 'slow', timeout: 8000, containerheight: '130px' });
});
$('.topOfPage').click(function () {
	$.scrollTo('#header', 600);
	return false;
});
$(document).ready(function(){
	$('.boxgrid.caption').hover(function(){
		$('.cover', this).stop().animate({top:'15px'},{queue:false,duration:180});}, 
		function() {
		$('.cover', this).stop().animate({top:'110px'},{queue:false,duration:180});
	});
	$('.boxgrid-p.caption-p').hover(function(){
		$('.cover-p', this).stop().animate({top:'0px'},{queue:false,duration:180});}, 
		function() {
		$('.cover-p', this).stop().animate({top:'245px'},{queue:false,duration:180});
	});
});