// Colour fade setup
$(document).ready(function() {
$('#buttons ul li').hover(
    function() {
        $(this).stop().animate({color:'#ffffff'}, 200);
        }, function () {
        $(this).stop().animate({color:'#fa861c'}, 200);
    });
});
// Data behind each button
$(document).ready(function() {
	$("#buttons ul li:nth-child(1)").click(function() {
		$("#info-content").html("<h2>Industry Owned Website</h2><p><em><strong>viewproperty.com.au</strong></em> is a truly national website that will be entirely owned by Australian Real Estate Industry members.</p>");	
	});
	$("#buttons ul li:nth-child(2)").click(function() {
		$("#info-content").html("<h2>Equal Share Opportunities</h2><p>A shareholder model is currently being constructed whereby all industry members will have the opportunity to participate in ownership of <em><strong>viewproperty.com.au</strong></em></p>");
	});
	$("#buttons ul li:nth-child(3)").click(function() {
		$("#info-content").html("<h2>No Dominant Shareholders</h2><p><em><strong>viewproperty.com.au</strong></em> is unique in that no individual or group will be able to take a dominant shareholding.</p>");
	});
	$("#buttons ul li:nth-child(4)").click(function() {
		$("#info-content").html("<h2>No Excessive Monthly Fees</h2><p>Although <em><strong>viewproperty.com.au</strong></em> is designed to be a major online force there will be no excessive fees charged and profits will be distributed back to Industry shareholders. For the first time Australian Industry members will have their own affordable national website. All listings will be free for the first 6 months after launch.</p>");
	});
	$("#buttons ul li:nth-child(5)").click(function() {
		$("#info-content").html("<h2>Free Sales & CMA Data</h2><p>Where other commercial portals charge for you to access data <em><strong>viewproperty.com.au</strong></em> will provide all data free of charge.</p>");
	});
	$("#buttons ul li:nth-child(6)").click(function() {
		$("#info-content").html("<h2>Free Benchmarking Data</h2><p>Being able to benchmark office and market statistics is a valuable tool for agents and <em><strong>viewproperty.com.au</strong></em> will provide this information back to the Industry free of charge.</p>");
	});
	$("#buttons ul li:nth-child(7)").click(function() {
		$("#info-content").html("<h2>Free Appraisal Leads</h2><p>Where other sites charge you for appraisal leads in your area, <em><strong>viewproperty.com.au</strong></em> will supply these to the nearest supporting office free of charge.</p>");
	});
	$("#buttons ul li:nth-child(8)").click(function() {
		$("#info-content").html("<h2>Advertising Opportunities</h2><p>Industry members will be able to promote themselves or their offices within their suburb on the <em><strong>viewproperty.com.au</strong></em> property search area at a fraction of the average current costs on other sites.</p>");
	});
	$("#buttons ul li:nth-child(9)").click(function() {
		$("#info-content").html("<h2>No Agent Dominates</h2><p>The <em><strong>viewproperty.com.au</strong></em> system will provide equal opportunities for all agents to market their services and will never 'auction' advertising space to increase revenue.</p>");
	});
	$("#buttons ul li:nth-child(10)").click(function() {
		$("#info-content").html("<h2>Industry Shareholders</h2><p>Once <em><strong>viewproperty.com.au</strong></em> is launched and has met set KPI's in regards to listing numbers, traffic and search engine optimisation Industry members will be invited to become shareholders.</p>");
	});
	$("#buttons ul li:nth-child(11)").click(function() {
		$("#info-content").html("<h2>Popular Supported Feeds</h2><p>To ensure ease of listing placement <em><strong>viewproperty.com.au</strong></em> has already, or is making arrangments with all major feeders to enable agents to feed their For Sale and For Rent listings to the site.</p>");
	});
	$("#buttons ul li:nth-child(12)").click(function() {
		$("#info-content").html("<h2>40,000 listings now loading</h2><p>There are already over 40,000 listings loaded with more coming on by the hour. We have an initial target of 50,000 for launch.</p>");
	});
	$("#buttons ul li:nth-child(13)").click(function() {
		$("#info-content").html("<h2>Are you on board?</h2><p>We invite you to register your support here and to load your listings to <em><strong>viewproperty.com.au</strong></em> immediately. We will provide feed instructions as soon as we receive your registation of support.</p>");
	});
	$("#buttons ul li:nth-child(14)").click(function() {
		$("#info-content").html("<h2>Rentals &amp; Commercial</h2><p>In addition to promoting properties for sale ViewProperty Australia will also provide a dedicated Rental Property search and also a Commercial Property search facility.</p>");
	});
});
$(document).ready(function() {
	$(function() {
		//find all form with class jqtransform and apply the plugin
		$(".rowElem").jqTransform();
		$(".rowElem").css({'marginTop':'3px'});
	});
});
$(document).ready(function() {
		$("#msgboxclose").click(function() {
			$("#msgbox").fadeOut(500);
		});
});
