﻿$(document).ready(function(){
	$('.exdesc').hide();
	$('.lgpht').hide();
	
	$('.viewdesc').click(function() {
		$(this).parent().next('.exdesc').toggle('fast');
		$(this).parent().next('.exdesc').find("p").hide();
		return false;
	});
	
	$("a.prs").click(function() {
		var sideCon = $(this).next("p").html();
		var title = $(this).html();	
		var pht = $(this).children('.lgpht').html();
		$("#imms").html(pht);
		$("#deshd").html("" + title + "");		
		$(".descrip").html("" + sideCon + "");
		return false;
	
	});
});
