	$(function() {
		//$('#content > .wrap > h2').siblings('div > p').show();
		
		
		$('.wrap h2 a').click(function() {
			if($(this).parent('h2').next('div').is(':visible')) {
				$(this).parent('h2').next('div').slideUp(250);
				//$(this).parent('h2').parent('.wrap').css({'border-bottom':'1px solid #ccc'});
				//$(this).removeClass('change');
			}
			else{
				$(this).parent('h2').next('div').slideDown(350,
					function(){
						//$(this).prev('h2').children('a').attr('rel');
						//alert($(this).prev('h2').children('a').attr('rel'));
						var rel=$(this).prev('h2').children('a').attr('rel');
						if($(this).children('p').children('iframe').attr('src') == '#'){
							$(this).children('p').children('iframe').attr('src',rel);
						}
						
						
					});
				$(this).parent('h2').parent('.wrap').children('div').css({'border-top':'1px solid #fff'});
				$(this).parent('h2').parent('.wrap').siblings('.wrap').children('h2').children('a').parent('h2').next('div').slideUp(250);
			}
		});
	});
	
	function bindclicklistener() {
		//alert('simulate click')
		jQuery('.about iframe, .whyus iframe').contents().find('.LearnMore').click(function() {
			jQuery('.showcase .viewhere a').click();
			//alert('');
		});
	}

